home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / mxlibs / sbvox / voxdrv.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1994-10-28  |  357 b   |  11 lines

  1. unit VOXDrv;
  2. {
  3.  The CT-VOICE driver has to be aligned on a segment boundary in order for it
  4.  to work.  The only way to force this using Turbo Pascal is to put it into a
  5.  separate unit.  To get CT-VOICE.OBJ, run SETUP.BAT.
  6. }
  7.     interface
  8.         procedure CTVOICE;
  9.     implementation
  10.         procedure CTVOICE; external; {$L CT-VOICE.OBJ}
  11.     end.